home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19971216-19980424 / 000064_news@newsmaster….columbia.edu _Wed Jan 7 13:45:04 1998.msg < prev    next >
Internet Message Format  |  1998-04-22  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA11297
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 7 Jan 1998 13:45:03 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA11981
  7.     for kermit.misc@watsun; Wed, 7 Jan 1998 13:45:02 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: K/2 gotchas
  12. Date: 7 Jan 1998 18:44:58 GMT
  13. Organization: Columbia University
  14. Lines: 30
  15. Message-ID: <690ifa$qik$1@apakabar.cc.columbia.edu>
  16. References: <TCPSMTP.18.1.4.-14.19.44.2375661496.4900277@kincyb.com> <68qros$3ht$1@apakabar.cc.columbia.edu> <68r298$6ug$1@apakabar.cc.columbia.edu> <690ahp$q3b$1@samba.rahul.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8234
  19.  
  20. In article <690ahp$q3b$1@samba.rahul.net>,  <dold@network.rahul.net> wrote:
  21. : Jeffrey Altman (jaltman@watsun.cc.columbia.edu) wrote:
  22. : : My guess is that the ready for download or *** are either in a special
  23. : : color, is bold faced, or is blinking.  Which means that the real string
  24. : : you are looking for contains ESC sequences.  Therefore "ready for 
  25. : : download ***" is never actually seen.
  26. : Log Session could be used to verify this.
  27. :
  28. Right.  Another little-known but very handy feature of Kermit 95 is the
  29. terminal-screen debugger.  Just type Alt-d to toggle it on and off.  When
  30. on, the word DEBUG appears in the status line and all control characters and
  31. escape sequences (and Telnet negotiations, etc) are shown graphically, in a
  32. distinct color.
  33.  
  34. : I always Log Session before starting script design, to make sure that I
  35. : don't make speeling mistakes or have cApitalization troubles, by
  36. : editting the recorded file into a script, rather than entering from
  37. : scratch.
  38. And by the way, you can control whether INPUT commands care about
  39. capitalization by using the command:
  40.  
  41.   SET INPUT CASE { IGNORE, OBSERVE }
  42.  
  43. or, equivalently (and more simply):
  44.  
  45.   SET CASE { ON, OFF }
  46.  
  47. - Frank